--- import { type CollectionEntry, getCollection } from "astro:content"; import Layout from "../../layouts/PageLayout.astro"; export async function getStaticPaths() { const posts = await getCollection("blog"); return posts.map((post) => ({ params: { slug: post.slug }, props: post, })); } type Props = CollectionEntry<"blog">; const post = Astro.props; const { Content, remarkPluginFrontmatter } = await post.render(); ---

{post.data.title}

Posted  by {post.data.author} ‐ {remarkPluginFrontmatter.minutesRead}